Skip to main content
guest
Join
|
Help
|
Sign In
NISA UNI
Home
guest
|
Join
|
Help
|
Sign In
Wiki Home
Recent Changes
Pages and Files
Members
-------------Home-------------
5
th
semester
DM - Data Mining
DS - Data Security
MM - Multimedia
NC - Networks & Comm
NO - Networks & Organ
PM - Project Mngmnt II
4
th
semester
AL - Algo. Complexsity
BM - Business Modelling
CC - C. Communication
Cpp - C++
N - Negotiation
P2 - Physics #2
PM - Project Managment
MA - Managerial Acc
3
rd
semester
C - Soft. Engineering
CoC - Cost Controlling
DB - Databases 1
DDP - DData Processing
FE - Economics
IM - Inf. managment
P - Physics
2
nd
semester
MIC - MicroEconomics
M2 - Math 2
NL - Country&Culture
PA2 - Pascal 2
PsC - Psychology 2
FA - Accounting
1
st
semester
BA - Business Admin
MAE - MacroEconomics
PA - Pascal
P - Psychology
HW - Hardware
M - Math
C - Soft. Engineering
Edit
0
31
…
0
Tags
No tags
Notify
RSS
Backlinks
Source
Print
Export (PDF)
Software Engineering
Andrzej Siemiński
Email: sieminski (at) pwr.wroc.pl
Tel: (0-71) 320-32-58 / 320-37-99
Some useful
links
for our course:
(Ex. & Labs)
https://eportal.el.iis.pwr.wroc.pl/w08
https://eportal.el.iis.pwr.wroc.pl/w08/board/BOARD/Forms/AllItems.aspx?RootFolder=%2fw08%2fboard%2fBOARD%2fSiemi%c5%84ski%2eAndrzej&FolderCTID=&View=%7b2B76D1CF%2dF94D%2d4F69%2d8721%2d0B624E3638C4%7d
http://tigcc.ticalc.org/doc/keywords.html
http://tigcc.ticalc.org/doc/opers.html
http://tigcc.ticalc.org/doc/string.html
http://c-faq.com/
LABS:
Assignment #2
:
run the CMD with your programs Line2word+collectLines like this:
C:\your_dir\line2word < inputtext.txt | sort | collectLines > outputtext.txt
*sort is a shell function inside the OS*
A possible code for the line counter:
line_ctr.cpp
Details
Download
1 KB
Assignment #3
:
line_dif.cpp
Details
Download
1 KB
line_top10.cpp
Details
Download
1 KB
line_top_n.cpp
Details
Download
1 KB
Assignment #4
:
1) Find all Words that start with the letter 'a' or 'A'
*fixed*
:
a_line.cpp
Details
Download
1 KB
2) Find all Words that start including a string given by the user in the commandline
:
param_multi_scanner.cpp
Details
Download
1 KB
..........a much easier and smarter solution using more power of the function strstr
:
param_multi_scanner_new.cpp
Details
Download
1 KB
3
) Find all words with more then N characters
:
more_than_n.cpp
Details
Download
1 KB
4
) Same as 3... apart the line
if (limit
>
wordlen)
5
) A combination of 1+3+4 piped | | | ...
Assignment #5
:
in work.. not working:
solution.zip
Details
Download
7 KB
Javascript Required
You need to enable Javascript in your browser to edit pages.
help on how to format text
Turn off "Getting Started"
Home
...
Loading...
Software Engineering
Andrzej SiemińskiEmail: sieminski (at) pwr.wroc.pl
Tel: (0-71) 320-32-58 / 320-37-99
Some useful links for our course: (Ex. & Labs)
https://eportal.el.iis.pwr.wroc.pl/w08
https://eportal.el.iis.pwr.wroc.pl/w08/board/BOARD/Forms/AllItems.aspx?RootFolder=%2fw08%2fboard%2fBOARD%2fSiemi%c5%84ski%2eAndrzej&FolderCTID=&View=%7b2B76D1CF%2dF94D%2d4F69%2d8721%2d0B624E3638C4%7d
http://tigcc.ticalc.org/doc/keywords.html
http://tigcc.ticalc.org/doc/opers.html
http://tigcc.ticalc.org/doc/string.html
http://c-faq.com/
LABS:
Assignment #2:
run the CMD with your programs Line2word+collectLines like this:
C:\your_dir\line2word < inputtext.txt | sort | collectLines > outputtext.txt
*sort is a shell function inside the OS*
A possible code for the line counter:
Assignment #3:
Assignment #4:
1) Find all Words that start with the letter 'a' or 'A' *fixed*:
2) Find all Words that start including a string given by the user in the commandline:
..........a much easier and smarter solution using more power of the function strstr:
3) Find all words with more then N characters:
4) Same as 3... apart the line if (limit > wordlen)
5) A combination of 1+3+4 piped | | | ...
Assignment #5:
in work.. not working: